feat(spp_cel_registry_search): promote module to Beta status#25
feat(spp_cel_registry_search): promote module to Beta status#25gonzalesedwin1123 merged 1 commit into19.0from
Conversation
Summary of ChangesHello @emjay0921, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the development status of the CEL Registry Search module to Beta. This change signifies that the module has undergone thorough manual verification and is now considered stable and ready for wider adoption, offering advanced search capabilities within the Registry menu. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the development_status of the spp_cel_registry_search module from 'Alpha' to 'Beta'. The change in __manifest__.py is correct. However, I've identified an inconsistency where the accompanying documentation files (README.rst and static/description/index.html) have not been updated and still reflect the 'Alpha' status. A review comment has been added to address this.
| "version": "19.0.2.0.0", | ||
| "license": "LGPL-3", | ||
| "development_status": "Alpha", | ||
| "development_status": "Beta", |
There was a problem hiding this comment.
While this change correctly promotes the module to 'Beta', the documentation has not been updated to match. The README.rst and static/description/index.html files still refer to the module as 'Alpha'. This creates an inconsistency for users and developers.
The README.rst file indicates it is auto-generated (likely by oca-gen-addon-readme). Please regenerate the documentation to ensure it reflects the new 'Beta' status.
Why is this change needed?
The CEL Registry Search module has been manually verified and is ready for Beta. It provides an Advanced Search portal under the Registry menu that allows users to query registrants using CEL expressions with real-time validation and clickable results.
How was the change implemented?
Updated
development_statusfrom"Alpha"to"Beta"in__manifest__.py.New unit tests
Unit tests executed by the author
How to test manually
/odoo/registry-cel)r.gender_id.display == "Female"— returns female registrantsr.income < 1000— returns low-income registrantsr.birthdate < "1960-01-01"— returns elderly registrantsmembers.exists(m, m.gender_id.display == "Female")— groups with female membersRelated links